Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / ItemEventHandler<T> Delegate
The source of the event.
An ItemEventArgs<T> object that contains the event data.


In This Topic
    ItemEventHandler<T> Delegate
    In This Topic
    Represents the method that handles an event after the item is operated on.
    Syntax
    'Declaration
     
    
    Public Delegate Sub ItemEventHandler(Of T)( _
       ByVal sender As Object, _
       ByVal e As ItemEventArgs(Of T) _
    ) 
    'Usage
     
    
    Dim instance As New ItemEventHandler(Of T)(AddressOf HandlerMethod)
    public delegate void ItemEventHandler<T>( 
       object sender,
       ItemEventArgs<T> e
    )

    Parameters

    sender
    The source of the event.
    e
    An ItemEventArgs<T> object that contains the event data.

    Type Parameters

    T
    See Also